using UnityEditor;
using UnityEngine;
using System;
using Object = UnityEngine.Object;

namespace MagicaCloth
{
    public class MagicaCapsuleColliderGizmoDrawer
    {
        static void DrawGizmo(MagicaCapsuleCollider scr, GizmoType gizmoType)
        {
            throw new NotImplementedException();
        }

        public static void DrawGizmo(MagicaCapsuleCollider scr, bool selected)
        {
            throw new NotImplementedException();
        }
    }
}